home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "modExExport"
- '******************************************************************'
- '* *'
- '* TurboCAD for Windows *'
- '* Copyright (c) 1993 - 2001 *'
- '* International Microcomputer Software, Inc. *'
- '* (IMSI) *'
- '* All rights reserved. *'
- '* *'
- '******************************************************************'
- ' This "Export TurboCAD's data to Excel " custom filter sample demonstrate
- ' how create custom file filter.
- ' This sample export some information about TurboCAD's objects into Excel spreadsheet
- ' here is list of TurboCAD's object's properties that this filter export.
-
- ' Type - type of graphic object (as string)
- ' Info - graphic's info string (as string)
- ' PenColor - pen color (as RGB)
- ' PenStyle - pen style (as string)
- ' Layer - name of the layer where graphic object is palced
- ' ID - unique ID of the graphic object
-
- Option Explicit
-
- Public Sub Main()
- End Sub
-
-